[USER (data scientist)]: Lastly, can you whip up a bar chart showing the number of matches played on different surface types? Please generate and display a bar chart showing the number of matches played on different surface types in the ATP tennis dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from decision_company import read_csv_file,

# please import the necessary private functions from decision_company first

atp_tennis = read_csv_file('atp_tennis.csv')

fig3, ax3 = create_subplots()

# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

# save data
save_plot('./pred_result/bar_chart.png')
show_plots()

---END CODE TEMPLATE---

[YOU (AI assistant)]: Of course! Here's the code to create a bar chart using pandas and matplotlib: 
'''
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from decision_company import read_csv_file,

# please import the necessary private functions from decision_company first

atp_tennis = read_csv_file('atp_tennis.csv')

fig3, ax3 = create_subplots()

# YOUR SOLUTION BEGIN:
